home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / scsh-0.4 / scsh-0 / scsh-0.4.2 / scsh / ekko.scm < prev    next >
Text File  |  1995-10-13  |  187b  |  14 lines

  1. #!/usr/local/bin/scsh -s
  2. !#
  3.  
  4. (define (main args)
  5.   (for-each (lambda (f) (display f) (write-char #\ ))
  6.         args)
  7.   (newline))
  8.  
  9. (define (ekko)
  10.   (main command-line-arguments)
  11.   )
  12.  
  13. (ekko)
  14.